projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb14066
)
(store_mode_line_string): Lisp_Object/int mixup.
author
Ken Raeburn
<raeburn@raeburn.org>
Sat, 29 Jun 2002 19:52:14 +0000
(19:52 +0000)
committer
Ken Raeburn
<raeburn@raeburn.org>
Sat, 29 Jun 2002 19:52:14 +0000
(19:52 +0000)
src/ChangeLog
patch
|
blob
|
history
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index b7a6e0f9111c6de24fd2e5a366a6c00b3b9f81e6..15e57c464b1cc1a9ccbc9ee876844c64f1bbaefc 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2002-06-29 Ken Raeburn <raeburn@gnu.org>
+
+ * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
+
2002-06-28 Jan D. <jan.h.d@swipnet.se>
* keyboard.c (readable_filtered_events): New function that filters
diff --git
a/src/xdisp.c
b/src/xdisp.c
index afcce0b7b9fe039026c91e74744890c42d0abb6d..066f4fa0027c6ac8bbcf25d7ef01b133440dcb67 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-14104,7
+14104,7
@@
static int store_mode_line_string (string, lisp_string, copy_string, field_width
}
else
{
- len =
Flength (lisp_string
);
+ len =
XFASTINT (Flength (lisp_string)
);
if (precision > 0 && len > precision)
{
len = precision;